The window command
You use the window command to move the window associated with the Rexx
port you are using.
Template: item/a
Item is one of:
- A string of the form left/top/width/height
- Resizes and moves the window to the given position and size.
- back
- Moves the screen in back of all windows on that screen.
- front
- Moves the window in front of all windows on that screen.
- zip
- Zips the window to it's alternate size and location.
Warning
While the option of specifing a window position is generally safe, you
should try to use reasonable values. You must also make sure the
result is always a string and not a number. For instance,
10/10/400/400
is a small floating point number, not a
string. You shoulde use "10/10/400/400"
Up to the commands or back to screen.
Mike W. Meyer